home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 273_01 / hidecur.cc < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-26  |  199 b   |  11 lines

  1. #include <dos.h>
  2. hide_cur()
  3. /* Turn the cursor off */
  4. {
  5.         union REGS inregs;
  6.         inregs.h.ah=1;
  7.         inregs.h.cl=7;
  8.         inregs.h.ch=0x26;
  9.         int86(0x10,&inregs,&inregs);
  10. }
  11.